home *** CD-ROM | disk | FTP | other *** search
/ Cookbook USA: Drips, Dressings & Sauces / Cookbook USA - Drips, Dressings & Sauces (1997)(MicroMedia).iso / ch15 / frmpleas.frm < prev    next >
Text File  |  1995-03-30  |  1KB  |  40 lines

  1. VERSION 2.00
  2. Begin Form frmPleaseWait 
  3.    Caption         =   "Searching..."
  4.    ClientHeight    =   465
  5.    ClientLeft      =   2055
  6.    ClientTop       =   3525
  7.    ClientWidth     =   4320
  8.    Height          =   870
  9.    Left            =   1995
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   465
  12.    ScaleWidth      =   4320
  13.    Top             =   3180
  14.    Width           =   4440
  15.    Begin Label lblPleaseWait 
  16.       Alignment       =   2  'Center
  17.       Caption         =   "Please Wait . . ."
  18.       FontBold        =   -1  'True
  19.       FontItalic      =   0   'False
  20.       FontName        =   "MS Sans Serif"
  21.       FontSize        =   13.5
  22.       FontStrikethru  =   0   'False
  23.       FontUnderline   =   0   'False
  24.       Height          =   375
  25.       Left            =   240
  26.       TabIndex        =   0
  27.       Top             =   0
  28.       Width           =   3855
  29.    End
  30. End
  31. Option Explicit
  32.  
  33. Sub Form_Load ()
  34. ' centering the form
  35. Me.Left = (screen.Width - Me.Width) / 2
  36. Me.Top = Abs((screen.Height - Me.Height) / 2)
  37.  
  38. End Sub
  39.  
  40.